home *** CD-ROM | disk | FTP | other *** search
/ Compendium Deluxe 2 / LSD and 17bit Compendium Deluxe - Volume II.iso / a / prog / cprog / f2c3.2bin.lha / f2c-for-SASC651 / fsplit.lha / fsplit / fsplit.h < prev    next >
Encoding:
Text File  |  1994-07-08  |  633 b   |  34 lines

  1. # fsplit.h - This file is part of FSPLIT.
  2.  
  3. include machdep.h
  4.  
  5. # We won't accept lines longer than this.
  6. # Note that this also limits the length
  7. # of the input file name!
  8.  
  9. define LINELEN    80
  10.  
  11. # File descriptors
  12.  
  13. define FORTRAN  1
  14. define SCRATCH  2
  15. define OUTPUT   3
  16.  
  17. define OTHER   0
  18. define BLOCK   1
  19. define ENDSTAT 2
  20.  
  21. # Default filenames. They are used if fsplit cannot
  22. # determine the name of the current program unit.
  23. # E.g., 6 characters which will leave room for
  24. # the two-digit generation number under MS-DOS
  25.  
  26.  
  27. define SUBNAME 'subrou'
  28. define FUNNAME 'functn'
  29. define PRGNAME 'progrm'
  30. define BLKNAME 'blkdta'
  31.  
  32. define MAXNAME 6
  33.  
  34.